home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / memcpy.c,v < prev    next >
Text File  |  1989-03-22  |  1KB  |  69 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.03.22.16.06.21;  author rab;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.10.03.18.15.25;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @*** empty log message ***
  27. @
  28. text
  29. @/*
  30.  * Copyright (c) 1985 Regents of the University of California.
  31.  * All rights reserved.
  32.  *
  33.  * Redistribution and use in source and binary forms are permitted
  34.  * provided that this notice is preserved and that due credit is given
  35.  * to the University of California at Berkeley. The name of the University
  36.  * may not be used to endorse or promote products derived from this
  37.  * software without specific written prior permission. This software
  38.  * is provided ``as is'' without express or implied warranty.
  39.  */
  40.  
  41. #if defined(LIBC_SCCS) && !defined(lint)
  42. static char sccsid[] = "@@(#)memcpy.c    5.3 (Berkeley) 5/25/88";
  43. #endif /* LIBC_SCCS and not lint */
  44.  
  45. #include <string.h>
  46.  
  47. char *
  48. memcpy(t, f, n)
  49.     register char *t, *f;
  50.     register n;
  51. {
  52.     register char *p = t;
  53.  
  54.     while (--n >= 0)
  55.         *t++ = *f++;
  56.  
  57.     return (p);
  58. }
  59. @
  60.  
  61.  
  62. 1.1
  63. log
  64. @Initial revision
  65. @
  66. text
  67. @d17 2
  68. @
  69.